home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / C / Frameworks / Extension Shell 1.3 / Sample Extensions / WhatKey ƒ / WhatKey.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-01-26  |  1.0 KB  |  36 lines  |  [TEXT/R*ch]

  1. /*    NAME:
  2.         WhatKey.h
  3.  
  4.     WRITTEN BY:
  5.         Dair Grant
  6.                 
  7.     DESCRIPTION:
  8.         Header file for WhatKey.c
  9.  
  10.     ___________________________________________________________________________
  11. */
  12. #ifndef __WHATKEY__
  13. #define __WHATKEY__
  14. //=============================================================================
  15. //        Defines                                                                 
  16. //-----------------------------------------------------------------------------
  17. // Notification Manager error strings
  18. #define kErrorStrings                128                            // Resource ID of 'STR#' resource
  19. #define kNeedSystemSeven            1                            // Need System 7 index
  20. #define kUnknownError                2                            // Unknown error index
  21.  
  22.  
  23. // Enabled icons
  24. #define kMyNumEnabledIcons            1                            // Number of enabled icons
  25. #define kEnabledAnimDelay            0                            // Delay for enabled icon(s)
  26. #define kMyFirstEnabledIcon            128                            // First enabled icon
  27.  
  28.  
  29. // Disabled icons
  30. #define kMyNumDisabledIcons            1                            // Number of disabled icons
  31. #define kDisabledAnimDelay            0                            // Delay for disabled icon(s)
  32. #define kMyFirstDisabledIcon         129                            // First disabled icon
  33.  
  34.  
  35. #endif
  36.